home *** CD-ROM | disk | FTP | other *** search
/ Power CD-ROM!! 8 / Power CD-ROM 8.iso / prgmming / showiff / showiff.pas < prev   
Encoding:
Pascal/Delphi Source File  |  1994-11-29  |  221 b   |  14 lines

  1. uses Objects, IFF, CRT;
  2.  
  3. var GFile: PBUFStream;
  4.  
  5. begin
  6.  GFile := new(PBUFStream, Init(ParamStr(1), stOpenRead, 32767));
  7.  if GFile^.Status <> 0 then Halt;
  8.  
  9.  ShowIFF(GFile);
  10.  
  11.  GFile^.Done;
  12.  
  13.  TextMode(C80);
  14. end.